* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Optional: Other loader styles */
}

/* From Uiverse.io by Praashoo7 */ 
.l {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .o {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.4s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .a {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.6s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.8s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .i {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .n {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1.2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .g {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1.4s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d1 {
    color: black;
    opacity: 0;
    animation: pass1 2s ease-in-out infinite;
    animation-delay: 1.6s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d2 {
    color: black;
    opacity: 0;
    animation: pass1 2s ease-in-out infinite;
    animation-delay: 2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  @keyframes pass {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}
  
  @keyframes pass1 {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}

.navbar-container {
    width: 100%;
    height: 85px;
    background-color: white;
    padding: 14px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3px;
    height: 60px;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 17px;
}

.nav-links a {
    font-family: "Roboto Condensed", sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    margin-top: 30px;
    margin-right: 20px;
}

.nav-links a:hover {
    color: #608BC1;
}

.phone-number a {
    font-size: 20px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    color: #ED6a5a;
    border: 2px solid #ED6a5a;
}

.nav-links .phone-number a:hover {
    color: white;
    background-color: #ED6a5a;
}

.contact-content {
    text-align: center;
    padding: 40px;
    color: #333;
}

.contact-content h2 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2em;
    margin-bottom: 10px;
}

.contact-content p {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #666;
    margin-bottom: 40px;
}

.contact-sections {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    width: 220px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
}

.contact-box p {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.95em;
    color: #202020;
    margin: 15px 0;
}

.contact-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    color: #0066ff;
    font-weight: bold;
    border: 1px solid #0066ff;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.contact-button:hover {
    background-color: #0066ff;
    color: #fff;
}

.contact-label {
    width: 4px;
    height: 25px;
    margin-bottom: 10px;
    border-radius: 2px;
}

.sales-label {
    background-color: #00a676;
}

.support-label {
    background-color: #ff5a5a;
}

.media-label {
    background-color: #00a676;
}

.partnerships-label {
    background-color: #ff5a5a;
}


/* Footer Container */
.foot {
    background-color: #1e1e28;
    color: #ffffff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Column */
.footer-column {
    flex: 1;
    margin: 0 15px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.footer-column h3::after {
    content: "▸";
    color: #007bff;
    font-size: 18px;
    position: absolute;
    margin-left: 5px;
}

/* Footer Text */
.footer-column p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Links Styling */
.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Contact Information */
.contact-info li {
    font-size: 14px;
    color: #cccccc;
}

.verified-badge {
    margin-top: 20px;
    max-width: 100px;
}

/* Footer Column Spacing */
.footer-container .footer-column:not(:last-child) {
    margin-right: 30px;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Dropdown Menu for Mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.mobile-nav a {
    padding: 10px 0;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav a:hover {
    color: #608BC1;
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide main nav links */
    }

    .hamburger {
        display: block; /* Show hamburger icon */
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .container,
    .content-section,
    .product-cards,
    .stat {
        flex-direction: column;
        gap: 20px;
    }

    /* Ensure content centers and resizes for mobile */
    .content h1 {
        font-size: 50px;
    }
    .content h3 {
        font-size: 28px;
    }
    .content h2 {
        font-size: 18px;
        padding: 8px 16px;
    }
    .left-column,
    .right-column {
        width: 100%;
    }
    .image-section img,
    .product-card {
        width: 100%;
    }
    .footer-container {
        display: block;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .testimonial-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
        align-items: center;
        padding: 50px;
    }
}
